From c9ec4ba5a14790f4d9f5f67be12a049e1f611861 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 15 Jun 2013 20:22:18 -0400 Subject: [PATCH] GtkImage: Fix the initial value of icon-size Since we are pulling the icon-size out of the icon helper now, we should set its icon-size when constructing it. --- gtk/gtkimage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c index 61c41b97ee..cc480bfe90 100644 --- a/gtk/gtkimage.c +++ b/gtk/gtkimage.c @@ -380,6 +380,7 @@ gtk_image_init (GtkImage *image) gtk_widget_set_has_window (GTK_WIDGET (image), FALSE); priv->icon_helper = _gtk_icon_helper_new (); + _gtk_icon_helper_set_icon_size (priv->icon_helper, DEFAULT_ICON_SIZE); priv->filename = NULL; } -- 2.30.2